home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 3916 < prev    next >
Encoding:
Text File  |  1996-08-05  |  983 b   |  33 lines

  1. Path: sisnet.ssku.k12.ca.us!news
  2. From: scotrhig@sisnet.ssku.k12.ca.us (Scott River High School)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Problem Linking w/ Watcom - Please Help
  5. Date: 31 Jan 1996 22:43:05 GMT
  6. Organization: Scott River High School
  7. Message-ID: <4eor9p$t75@sisscoe.sisnet.ssku.k12.ca.us>
  8. References: <4e8kc3$avd@morgoth.sfu.ca>
  9. NNTP-Posting-Host: scottrhigh2.sisnet.ssku.k12.ca.us
  10. Mime-Version: 1.0
  11. Content-Type: Text/Plain; charset=US-ASCII
  12. X-Newsreader: WinVN 0.99.6
  13.  
  14. In article <4e8kc3$avd@morgoth.sfu.ca>, dbullock@news.sfu.ca says...
  15. >
  16. >I am attempting to link a DOS program using Watcom's wlink
  17. >command, but I cannot get the linker to link the standard library.
  18. >The output from the link command says there are unresolved symbols
  19. >such as 'sprintf', 'putc', etc.
  20.  
  21. well, did you compile the program with Watcom?  Watcom uses a different
  22. internal naming format for functions.
  23.  
  24. Standard:
  25.     _<original function name>
  26.  
  27. Watcom:
  28.     <original function name>_
  29.  
  30. Regards,
  31. Ananda
  32.  
  33.